[index]
Close File Command
Syntax
close file <filename>
Description
Examples
The following example opens a text file specified by the user, reads the first 100 characters of the file into a field, and closes the file again.
on mouseUp
ask "What file?"
put it into fname
open file fname
read from file fname for 100 put it into field "Text"
close file fname
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.